1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*{
"CATEGORIES": [
"Geometry Adjustment"
],
"CREDIT": "VIDVOX",
"DESCRIPTION": "Moves the vertex points to the specified locations without correction",
"INPUTS": [
{
"NAME": "inputImage",
"TYPE": "image"
},
{
"DEFAULT": [
0,
1
],
"LABEL": "Top Left",
"NAME": "topleft",
"TYPE": "point2D"
},
{
"DEFAULT": [
0,
0
],
"LABEL": "Bottom Left",
"NAME": "bottomleft",
"TYPE": "point2D"
},
{
"DEFAULT": [
1,
1
],
"LABEL": "Top Right",
"NAME": "topright",
"TYPE": "point2D"
},
{
"DEFAULT": [
1,
0
],
"LABEL": "Bottom Right",
"NAME": "bottomright",
"TYPE": "point2D"
}
],
"ISFVSN": "2"
}
*/
void main()
{
vec4 test = IMG_THIS_PIXEL(inputImage);
gl_FragColor = test;
}